Re: [SQL] idiom to mv recs => [NEW] bleeding lock? - Mailing list pgsql-sql

From Herouth Maoz
Subject Re: [SQL] idiom to mv recs => [NEW] bleeding lock?
Date
Msg-id l03110704b25a3c6c5c8a@[147.233.159.109]
Whole thread Raw
In response to Re: [SQL] idiom to mv recs => [NEW] bleeding lock?  (Thomas Good <tomg@nrnet.org>)
List pgsql-sql
At 15:18 +0200 on 26/10/98, Thomas Good wrote:


> My point:  when attempting to do a SELECT the table lock blocks even
> this activity.  Is this a bleeding lock?  Shouldn't a simple SELECT
> succeed?  I dunno...but this is problematic as users are looking for
> info while the data entry person is doing her thing...ouch.

This lock is an exclusive lock. There is no other kind of lock in Postgres.

One may give up the LOCK at the beginning of the transaction. This would
mean that if a reader came and went before the deletion of the record, it
would succeed, because up to that point the transaction holds a shared lock
on the table. If a writer appeared, then it would fail, because it would
try to change the lock on the table from shared to exclusive, which it
can't do until all readers relinquished their locks.

This, however, creates a possibility that the deletion phase (and the
entire transaction) would fail, because the lock would fail to convert to
exclusive because other readers are still holding it.

Herouth



pgsql-sql by date:

Previous
From: Thomas Good
Date:
Subject: Re: [SQL] idiom to mv recs => [NEW] bleeding lock?
Next
From: "Jackson, DeJuan"
Date:
Subject: RE: [SQL] palloc failure: memory exhausted, but ulimit 'unlimited '